home *** CD-ROM | disk | FTP | other *** search
Makefile | 1995-05-03 | 321 b | 19 lines |
- include ../make.cfg
-
-
- ILIST= -I../ComponentLib
- LIBS=../ComponentLib/libcomponent.a $(XLIBS)
-
- all: stopwatch
-
- stopwatch: main.o Stopwatch.o Timer.o StopwatchTimer.o Face.o Control.o
- $(CC) -o stopwatch main.o Stopwatch.o Timer.o StopwatchTimer.o Face.o Control.o $(LIBS)
-
- clobber:
- rm -f *.o *~*
- rm -f stopwatch
-
-
-
-
-